home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / bit / src / forms / FORMS / INCLUDE / text.h < prev    next >
Text File  |  1994-08-01  |  543b  |  27 lines

  1. /************   Object Class: Text         ************/
  2.  
  3. /***** Class    *****/
  4.  
  5. #define FL_TEXT            2
  6.  
  7. /***** Types    *****/
  8.  
  9. #define FL_NORMAL_TEXT        0
  10.  
  11. /***** Defaults *****/
  12.  
  13. #define FL_TEXT_BOXTYPE        FL_NO_BOX
  14. #define FL_TEXT_COL1        FL_COL1
  15. #define FL_TEXT_LCOL        FL_LCOL
  16. #define FL_TEXT_ALIGN        FL_ALIGN_LEFT
  17.  
  18. /***** Others   *****/
  19.  
  20. #define FL_TEXT_BW        FL_BOUND_WIDTH
  21.  
  22. /***** Routines *****/
  23.  
  24. FL_OBJECT     *fl_create_text(int, float, float, float, float, const char *);
  25. FL_OBJECT     *fl_add_text(int, float, float, float, float, const char *);
  26.  
  27.